home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / DESK / CORE / Desk / h_doc / Module < prev    next >
Text File  |  1996-05-21  |  1KB  |  40 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for 
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #                                      
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    Module.h
  12.     Author:  Copyright © 1993 Jason Howat
  13.     Version: 1.01 (15 Oct 1995)
  14.     Purpose: Veneers for the Desk_OS_Module SWI.
  15.     History: 1.00 (23 Nov 1993) JH
  16.              1.01 (15 Oct 1995) JS Added #include of Core.h
  17. */
  18.  
  19.  
  20. #ifndef __Desk_Module_h
  21. #define __Desk_Module_h
  22.  
  23. #ifdef __cplusplus
  24.     extern "C" {
  25. #endif
  26.  
  27. #ifndef __Desk_Core_h
  28. #include "Desk.Core.h"
  29. #endif
  30.  
  31.  
  32. extern void    Desk_Module_Claim(unsigned size, void **block);
  33. extern void    Desk_Module_Free(void *block);
  34.  
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38.  
  39. #endif
  40.